HTMLify

index.html
Views: 113 | Author: cody
<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title>Alphabets Word Pronounce</title>
  <link rel="stylesheet" href="./style.css">

</head>
<body>
<!-- partial:index.partial.html -->
<audio preload="auto">
		<source id="oggSource" src="sounds/ogg/like-glass.ogg" type="audio/ogg">
		<source id="mp3Source" src="sounds/mp3/like-glass.mp3" type="audio/mp3">
		Oops! Looks like you're using an old browser, try using a modern browser like Google Chrome, Firefox or even Safari.
	</audio>
	<div class="main-cont">

		<div id="about-cont">
			<div class="content-wrapper">
                <div class="about-white-bg">
					<h2 class="about-title">A simple game to teach kids the English alphabets</h2>
					<div class="about-image"></div>
					<p class="about-text">
						Type any English Alphabet and hear the words For That.
					</p>
					<hr>
					<button id="hide-button" type="button" name="button">Hide</button>
				</div>
                      
			</div>
		</div>
		<div class="char-cont">
			<p id="big-char" class="char animationHabibi">
				Type any letter
			</p>
			<button id="show-keyboard-button" class="habibi-button" type="button" name="button">Show keyboard</button>
			<input id="mobile-text-input" type="text" name="name" value="oh you! you got me! let's chat @mahdif">
		</div>
		<footer>
			<button id="mute-button" class="habibi-button" type="button" name="button">Mute Sounds</button>
			<button id="about-button" class="habibi-button" type="button" name="button">About</button>
		</footer>
	</div>
<!-- partial -->
  <script  src="./script.js"></script>

</body>
</html>

Comments